home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / Programming / Source / WAIS / next-ui / BrowserAssocTable.h < prev    next >
Encoding:
Text File  |  1992-02-03  |  616 b   |  23 lines

  1. // BrowserAssocTable.h
  2. //
  3. // Free software created 1 Feb 1992
  4. // by Paul Burchard <burchard@math.utah.edu>.
  5. //
  6. // Provides a scrolling list of strings with dimmed associated strings in 
  7. // NX_LISTMODE; i.e. its entries may be multiply selected in all the usual 
  8. // ways. See the BrowserPane class for details.
  9. //
  10. // The associated string values are set via the -setAssocStringValue:at: 
  11. // method.
  12.  
  13. #import "BrowserPane.h"
  14.  
  15. @interface BrowserAssocTable : BrowserPane
  16.  
  17. - initFrame:(const NXRect *)frameRect;
  18. - setAssocStringValue:(const char *)aString at:(int)row;
  19. - (const char *)assocStringValueAt:(int)row;
  20.  
  21. @end
  22.  
  23.